home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / tpapi1.zip / NWTTS.PA1 < prev    next >
Text File  |  1991-12-04  |  3KB  |  65 lines

  1. {!R! FONT 15; FTMD 15; EXIT;}
  2.  
  3.  
  4. {***************************************************************************}
  5. {** Program : NWTTS                                                       **}
  6. {***************************************************************************}
  7. {** Version : 1.0b            ** Started : 11/11/91  ** Ended :   /  /    **}
  8. {***************************************************************************}
  9. {******************************** Description ******************************}
  10. {***************************************************************************}
  11. {** OOP library for Netware API                                           **}
  12. {**                                                                       **}
  13. {** This unit forms the second level object : TTS                         **}
  14. {** This object is a descandent of          : NETWARE                     **}
  15. {**                                                                       **}
  16. {**                                                                       **}
  17. {**                                                                       **}
  18. {**                                                                       **}
  19. {***************************************************************************}
  20. {******************************** Information ******************************}
  21. {***************************************************************************}
  22. {**                                                                       **}
  23. {**                                                                       **}
  24. {**                                                                       **}
  25. {**                                                                       **}
  26. {** This code is (c) 1991 Tony Covelli,                                   **}
  27. {** Portions (c) Novell Inc,                                              **}
  28. {**                                                                       **}
  29. {**                                                                       **}
  30. {***************************************************************************}
  31.  
  32. {$I NETWARE.INC}
  33.  
  34. UNIT NWTTS;
  35.  
  36. INTERFACE
  37.  
  38. USES
  39.  
  40.   netware, nwvar;
  41.  
  42. TYPE
  43.  
  44.   pTTSOBJ = ^TTSOBJ;
  45.   TTSOBJ  = object (NetwareOBJ)
  46.  
  47.     constructor Init;
  48.     FUNCTION    TTSAbortTransaction : WORD;
  49.     FUNCTION    TTSBeginTransaction : WORD;
  50.     FUNCTION    TTSEndTransaction           (VAR TransactionNumber) : WORD;
  51.     FUNCTION    TTSGetApplicationThresholds (VAR LogicalRecordLockThreshold;
  52.                                              VAR PhysicalRecordLockThreshold) : WORD;
  53.     FUNCTION    TTSGetWorkStationThresholds (VAR LogicalRecordLockThreshold;
  54.                                              VAR PhysicalRecordLockThreshold) : WORD;
  55.     FUNCTION    TTSIsAvailable : WORD;
  56.     FUNCTION    TTSSetApplicationThresholds (LogicalRecordLockThreshold,
  57.                                              PhysicalRecordLockThreshold : BYTE) : WORD;
  58.     FUNCTION    TTSSetWorkStationThresholds (LogicalRecordLockThreshold,
  59.                                              PhysicalRecordLockThreshold : BYTE) : WORD;
  60.     FUNCTION    TTSTransactionStatus        (VAR TransactionNumber) : WORD;
  61.     destructor  Done; virtual;
  62.  
  63.   END;
  64.  
  65.